/* ============================================================
   BOTÕES DE COMANDO (TROCA DE OPERAÇÃO)
   ============================================================ */
.botoes-comando {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.btn-comando-final {
    background: #0a0f18;
    border: 2px solid #2a4a6a;
    color: #7a9aba;
    padding: 10px 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    transition: all 0.2s ease;
}

.btn-comando-final.ativo {
    background: #00ff6620;
    border-color: #00ff66;
    color: #00ff66;
}

.btn-comando-final:hover {
    background: #00ff6620;
    border-color: #00ff66;
    color: #00ff66;
    transform: translateY(-2px);
}